home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19950329-19950528 / 000160_news@columbia.edu_Mon Apr 17 14:28:39 1995.msg < prev    next >
Internet Message Format  |  1995-07-31  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15686
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 18 Apr 1995 02:41:15 -0400
  3. Received: by apakabar.cc.columbia.edu id AA01705
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 18 Apr 1995 02:41:12 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Kermit and FTP
  9. Message-Id: <1995Apr17.202839.47761@cc.usu.edu>
  10. Date: 17 Apr 95 20:28:39 MDT
  11. References: <3mumis$voj@uwm.edu>
  12. Organization: Utah State University
  13. Lines: 55
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3mumis$voj@uwm.edu>, dbm@alpha1.csd.uwm.edu (Dennis B Meilicke) writes:
  17. > I was just reading the latest issue of Kermit News, and ran across the
  18. > following: 
  19. >    Another interesting property of the RESEND feature is that it can
  20. >    also be used to recover interrupted non-Kermit transfers, such as
  21. >    with Ymodem-G or FTP. As long as you have a partial file that was
  22. >    transferred in binary mode, by whatever means, you can continue the
  23. >    transfer from the point of failure using Kermit's new RESEND
  24. >    feature.
  25. > So.  How does one do FTP transfers using c-kermit?  Or is this a
  26. > reference to a feature in one of the other (MS-DOS?) versions of
  27. > kermit?
  28. --------------
  29.     The reference is to FTP, as in the cutout below. It does not mean
  30. that Kermit implements ftp (since you already have a large ftp program).
  31.     Joe D.
  32.  
  33. $ man ftp
  34.  
  35.        ftp(1)                                                        ftp(1)
  36.  
  37.        NAME
  38.              ftp - file transfer program
  39.  
  40.        SYNOPSIS
  41.              ftp [-c | -C] [dgintv] [hostname]
  42.  
  43.        DESCRIPTION
  44.              The ftp command is the user interface to the ARPANET standard
  45.              File Transfer Protocol (FTP).  ftp allows a user to transfer
  46.              files to and from a remote network site.
  47.  
  48.        USAGE
  49.              Options may be specified at the command line, or to the
  50.              command interpreter.
  51.  
  52.                  etc
  53.  
  54.             recv remote-file [ local-file ]
  55.                   A synonym for get.
  56.  
  57.             reget Retrieve a file restarting at the end of the local-file.
  58.  
  59.  -->        restart
  60.                   Restart the transfer of a file from a particular byte-
  61.                   count.
  62.  
  63.             rhelp [ command-name ]
  64.                   Request help from the remote FTP server.  If a command-
  65.                   name is specified it is supplied to the server as well.
  66.  
  67.             etc.
  68.